home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
yam_i_dodatki
/
yammailcheck
/
mail2rw.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-03-22
|
521b
|
25 lines
/* Script to send an e-mail to Robert Wilson - Author of MailCheck */
options results
if show('P','YAM')=0 then do
address command 'run <>nil: yam:yam nocheck'
i=0
do until show('P','YAM')>0 | i=3
address command 'sys:rexxc/WaitForPort YAM'
i=i+1
end
if show('P','YAM')=0 then do
address command 'RequestChoice <>nil: "Error!" "Could not start YAM" "Hmm.."'
exit
end
end
address 'YAM'
show
mailwrite
writemailto '"robert.wilson@bigfoot.com"'
writesubject '"MailCheck Version 1.2"'
exit